home *** CD-ROM | disk | FTP | other *** search
/ Daddy Day Care Press Kit / Daddy Day Care Press Kit.iso / pc / acrobat reader 5 pc / wha library.dll / EXVW / 1000
Text File  |  2002-12-13  |  581b  |  21 lines

  1. gWidth = max(
  2.     zstring_width(zstring: '$$$/Dialogs/NewServices/Text1'),
  3.     zstring_width(zstring: '$$$/Dialogs/NewServices/Text2'),
  4.     max_char_width() * 32);
  5.  
  6. dialog(name: '$$$/Dialogs/NewServices')
  7. {
  8.     view(align_children: align_left)
  9.     {
  10.         static_text(name: '$$$/Dialogs/NewServices/Text1', width: gWidth);
  11.         static_text(name: '$$$/Dialogs/NewServices/Text2', width: gWidth);
  12.  
  13.         view(align_children: align_top)
  14.         {
  15.             list_box(item_id: 'list', width: gWidth, height: 200, align: align_fill);
  16.         }
  17.  
  18.         ok_cancel(ok_name: '$$$/Dialogs/NewServices/Update');
  19.     }
  20. }
  21.